home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.6)
-
- import gimp
-
- class plugin:
-
- def start(self):
- gimp.main(self.init, self.quit, self.query, self._run)
-
-
- def init(self):
- pass
-
-
- def quit(self):
- pass
-
-
- def query(self):
- pass
-
-
- def _run(self, name, params):
- if hasattr(self, name):
- return apply(getattr(self, name), params)
- raise AttributeError, name
-
-
- if __name__ == '__main__':
- plugin().start()
-
-